home *** CD-ROM | disk | FTP | other *** search
/ The Games Machine 76 / XENIATGM66.iso / Indiana Jones / Indiana Jones.exe / RESOURCE / PREVIEW.GOB / cog_gen_matanim.cog < prev    next >
Text File  |  1999-11-15  |  577b  |  28 lines

  1. # Jones 3D Cog Script
  2. #
  3. # gen_MatAnim.cog
  4. #
  5. # Continuous global animation of a material
  6. #
  7. # [SXC]
  8. # Fixed by RKD 5/8 - wasn't looping
  9. #
  10. # (C) 1997 LucasArts Entertainment Co. All Rights Reserved
  11. # ========================================================================================
  12.  
  13. symbols
  14.     message    startup    
  15.     material    animmat        desc=animating_material
  16.     flex        fps=5.0        desc=playback_speed
  17. end
  18.  
  19. code
  20. # ........................................................................................
  21.  
  22. startup:
  23.     materialanim(animmat, fps, 1);
  24.     return;
  25.  
  26. end
  27.  
  28.